home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form Form1
- BorderStyle = 1 'Fixed Single
- Caption = "Translate"
- ClientHeight = 1800
- ClientLeft = 2505
- ClientTop = 1890
- ClientWidth = 4335
- Height = 2205
- Icon = TRAN.FRX:0000
- Left = 2445
- LinkMode = 1 'Source
- LinkTopic = "Form1"
- MaxButton = 0 'False
- ScaleHeight = 1800
- ScaleWidth = 4335
- Top = 1545
- Width = 4455
- Begin OptionButton Option2
- Caption = "Hex"
- Height = 252
- Left = 360
- TabIndex = 3
- Top = 1200
- Width = 612
- End
- Begin CommandButton Command1
- Caption = "Translate"
- Default = -1 'True
- Height = 372
- Left = 1560
- TabIndex = 1
- Top = 1080
- Width = 1092
- End
- Begin OptionButton Option1
- Caption = "Decimal"
- Height = 252
- Left = 360
- TabIndex = 2
- Top = 840
- Width = 972
- End
- Begin TextBox Text1
- Height = 372
- Left = 360
- TabIndex = 0
- Top = 240
- Width = 3612
- End
- Dim hexout As Integer
- Sub Command1_Click ()
- length% = Len(text1.text)
- For x% = 1 To length%
- If hexout% Then
- msg$ = msg$ + " " + Hex$(Asc(text1.text))
- Else
- msg$ = msg$ + " " + Str$(Asc(text1.text))
- End If
- text1.text = Right$(text1.text, length% - x%)
- Next x%
- MsgBox msg$
- form1.text1.SetFocus
- End Sub
- Sub Form_Load ()
- option1.value = -1
- End Sub
- Sub Option1_Click ()
- hexout% = 0
- End Sub
- Sub Option1_GotFocus ()
- End Sub
- Sub Option2_Click ()
- hexout% = -1
- End Sub
-